home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / OSLIB / EXAMPLES / h / wimpmsg < prev    next >
Text File  |  1995-03-23  |  643b  |  36 lines

  1. #ifndef wimpmsg_H
  2. #define wimpmsg_H
  3.  
  4. /* Title:   wimpmsg.c
  5.  * Purpose: functions for wimp message handling
  6.  * Author:  IDJ
  7.  * History: 19-Jun-94: IDJ: created
  8.  *
  9.  */
  10.  
  11. #ifndef os_H
  12. #include "os.h"
  13. #endif
  14.  
  15. #ifndef wimp_H
  16. #include "wimp.h"
  17. #endif
  18.  
  19. #ifndef toolbox_H
  20. #include "toolbox.h"
  21. #endif
  22.  
  23. #ifndef event_H
  24. #include "event.h"
  25. #endif
  26.  
  27. extern void wimpmsg_dispatch (wimp_block *block, toolbox_block *id_block);
  28.  
  29. extern void wimpmsg_register_message_handler (int msg_no,
  30.      event_message_handler *handler, void *handle);
  31.  
  32. extern void wimpmsg_deregister_message_handler (int msg_no,
  33.       event_message_handler *handler, void *handle);
  34.  
  35. #endif
  36.